home *** CD-ROM | disk | FTP | other *** search
/ GFX Sensations 1 / Graphic Sensations - Volume 1.iso / com_net / net / pronet / include / devices / pronet.i
Text File  |  2000-01-01  |  1KB  |  37 lines

  1.     IFND    DEVICES_PRONET_I
  2. DEVICES_PRONET_I SET    1
  3.  
  4. PNDERR_PORTEXISTS    equ    -94
  5. PNDERR_BADCONFIG    equ    -95
  6.  
  7.       STRUCTURE    PNRequest,IO_SIZE
  8.     APTR    pnr_MsgPort
  9.     UWORD    pnr_NetSourcePort
  10.  
  11.     UWORD    pnr_NetDestPort
  12.     APTR    pnr_Data1
  13.     ULONG    pnr_Length1
  14.     APTR    pnr_Data2
  15.     ULONG    pnr_Length2
  16.     LABEL    pnr_Size
  17.  
  18. ; pnr_MsgPort        Messageport where data sent from the other machine
  19. ;            will be sent to.
  20. ; pnr_NetSourcePort    Logical Portnumber of the device-user.
  21. ; ^^ Both values must be specified at device-opening time and must remain
  22. ;    until closing the device.
  23. ;
  24. ; pnr_NetDestPort    Messageport where the data is to be sent to.
  25. ; pnr_Data1/2        Length of both data added must NOT be higher
  26. ; pnr_Length1/2        than $4000 (16K) - if you just want to send
  27. ;            one chunk of data, make pnr_Length2 = 0
  28.  
  29. PND_WRITE    equ    3    ;equal to CMD_WRITE..
  30. PND_NEWPORT    equ    5    ;***** internal! DON'T TRY TO USE..
  31. PND_DELPORT    equ    6    ;***** internal! DON'T TRY TO USE..
  32.  
  33. _LVOGetConfigString    equ    -42    ;hmm, not quite the right place
  34. _LVOFreeConfigString    equ    -48    ;for this ???
  35.  
  36.     ENDC    ; DEVICES_PRONET_I
  37.